home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
oper_sys
/
choices
/
chcssml1.lha
/
Object.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-02-06
|
1KB
|
47 lines
/*
* This file is part of the Choices Operating System Simulator
* Developed by: The TAPESTRY Parallel Computing Laboratory
* University of Illinois at Urbana-Champaign
* Department of Computer Science
* 1304 W. Springfield Ave.
* Urbana, IL 61801
*
* Copyright (c) 1987, 1988, 1989 The University of Illinois Board of Trustees.
* All Rights Reserved.
* CONFIDENTIAL INFORMATION. Distribution restricted under license agreement.
*
* Author: Gary M. Johnston (johnston@cs.uiuc.edu)
* Project Manager and Principal Investigator: Roy Campbell (roy@cs.uiuc.edu)
*
* Funded by: NSF TAPESTRY Grant No. 1-5-30035, NASA ICLASS Grant
* No. 1-5-25469 and No. NSG1471 and AT&T Metronet Grant No. 1-5-37411.
*/
/*
* Object.c - Class Object implementation.
*
* $Header: Object.c,v 1.1 88/02/12 18:19:41 johnston Exp $
* $Locker: johnston $
*/
#include "Assert.h"
#include "Object.h"
Object::Object( char * name )
{
/*
* Record the instance name.
*/
Assert(name != 0);
Object::name = name;
}
char *
Object::getName()
{
/*
* Return the instance name.
*/
Assert(name != 0);
return (name);
}